257b6d93fb1505829b1fa9609fe18ef071b17946,OsmAnd/src/net/osmand/plus/audionotes/AudioVideoNotesPlugin.java,Recording,getName,#Context#,223

Before Change


				String time = AndroidUtils.formatDateTime(ctx, file.lastModified());
				return ctx.getString(R.string.rec_audio_description, time).trim();
			} else if (this.isVideo()) {
				String time = AndroidUtils.formatDateTime(ctx, file.lastModified());
				return ctx.getString(R.string.rec_video_description, time).trim();
			} else if (this.isPhoto()) {
				String time = AndroidUtils.formatDateTime(ctx, file.lastModified());
				return ctx.getString(R.string.rec_photo_description, time).trim();

After Change


			} else if (this.isAudio()) {
				return ctx.getString(R.string.rec_audio_description, formatDateTime(ctx, file.lastModified()));
			} else if (this.isVideo()) {
				return ctx.getString(R.string.rec_video_description, formatDateTime(ctx, file.lastModified()));
			} else if (this.isPhoto()) {
				return ctx.getString(R.string.rec_photo_description, formatDateTime(ctx, file.lastModified()));
			}